Crazy's Amazing Corner on the Web
/blog/2025/YT Cleanse Week 2/
YT-Challange - Week 2
This Week was a bit harder. While keeping Track of my TV watching habits compared to YouTube, I was able to reduce that to. But that didn't stick well. Saturday and Sunday were especially bad, as I completely Disregarded to track them. Ending with only Estimates which even then are bad. My Assumption is, the Reason YouTube withdrawal was so small the previous week, was most likely because of the amount of TV I was watching substituting it. I also still feel quite Unproductive. I still can not Motivate me to do some Project. There is most likely another Block in the way of doing those.
In good news, my Book arrived on Saturday, so I will at least have an Alternative to TV/YT when it comes to Entertainment.
<canvas id="watchtime" style="width: 70%;"></canvas>
<script>
const ctx = document.getElementById('watchtime');
new Chart(ctx, {
type: 'bar',
data: {
labels: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
datasets: [
{
label: "YouTube",
data: [0.31, 1.02, 0.48, 1.09, 0.46, 1.1, 0],
},
{
label: "Owned",
data: [0.38, 0.81, 0.8, 0.8, 2.8, 3, 3],
},
{
label: "Netflix",
data: [0, 0, 0, 0, 0, 0, 1],
},
],
},
options: {
color: "white",
responsive: false,
scales: {
x: {
stacked: true,
},
y: {
stacked: true
}
}
}
});
</script>